home *** CD-ROM | disk | FTP | other *** search
- #
- # Main Menu
- #
- main_menu:
- set textColor = color[white on black]
- clear
- set textColor = color[yellow on blue]
- print " ULTIMATE BOOT CD VER 3.2 "
- print " http://www.ultimatebootcd.com/ "
- print " "
- set textColor = color[white on red]
- print " [Main Menu] "
- set textColor = color[white on cyan]
- print " "
- print " "
- print " "
- print " "
- print " [F1] Mainboard Tools "
- print " [F2] Hard Disk Tools "
- print " [F3] Filesystem Tools "
- print " [F4] Other Tools "
- print " [F5] DOS/Linux Boot Disks "
- if file[\INSERT\INSERT]
- then print " [F6] INSERT for UBCD "
- else print " "
- print " "
- print " [1] Boot first hard disk "
- print " [2] Boot second hard disk "
- print " [0] Drop to console "
- print " "
- print " "
- print " "
- print " "
- print " "
- set textColor = color[white on blue]
- print " Please select an item (First hard disk will boot after 5 minutes) "
- set textColor = color[white on black]
-
- #
- # Actions
- #
- getkey 500 script boothdd0.scn
- clear
- if ($lastKey == key[f1]); then script mboard.scn
- if ($lastKey == key[f2]); then script hdd.scn
- if ($lastKey == key[f3]); then script filesys.scn
- if ($lastKey == key[f4]); then script others.scn
- if ($lastKey == key[f5]); then script bootdsk.scn
- if ($lastKey == key[f6]); then isolinux
- if ($lastKey == key[1]); then script boothdd0.scn
- if ($lastKey == key[2]); then script boothdd1.scn
- if ($lastKey == key[0]); then goto console
- goto main_menu
-
- #
- # Drop to console
- #
- console:
- cd /
- clear
- help
- end
-
-